html, body {
  background-image: linear-gradient(120deg, rgb(255, 218, 209),rgb(239, 215, 255));
  background-attachment: fixed;
  font-family: "Roboto", sans-serif;
  margin: auto;
  padding: auto;
  height: 100%;
  width: 100%;
}
ul li {
  line-height: 25px;
}
a {
  color: rgb(55, 42, 228);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
}

#app {
  padding: 5vh 15vw;
}

#app p {
  line-height: 22px;
  color:#777;
  word-wrap: break-word;
}

#app #input {
  padding: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  border: 1px solid gainsboro;
  width: 90%;
  height: 300px;

  transition: all 0.1s;

  resize: none;
}

#app #input:focus {
  outline: 2px solid rgba(59, 27, 201, 0.8);
}

#app #input-key {
  padding: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  border: 1px solid gainsboro;

  margin-top: 20px;

  margin-bottom: 20px;

  width: 300px;
}

#app #input-key:focus {
  outline: 2px solid rgba(59, 27, 201, 0.8);
}

#app button {
  background-color: rgb(81, 58, 184);
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .5px;

  border: none;
  padding: 0 20px;
  height: 40px;
  line-height: 36px;

  cursor: pointer;

  margin-right: 15px;

  transition: all 0.1s;
}

#app button:hover {
  background-color: rgb(53, 31, 150);
}

#app #result {
  margin-top: 20px;
}